home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.mactech.com 2010
/
ftp.mactech.com.tar
/
ftp.mactech.com
/
machack
/
Hacks95
/
Aaron 1.0b3.sit
/
Aaron 1.0b3
/
Aaron Source
/
CDEF and Patches
/
NewFolder.c
< prev
next >
Wrap
Text File
|
1995-06-24
|
444b
|
18 lines
/* Aaron © 1995 Gregory D. Landweber, ALL RIGHTS RESERVED */
pascal long main ( short varCode, ControlHandle theControl, short msgCode, long msgParam )
{
Handle h;
long result;
h = GetResource ( 'CDEF', 0 );
if ( h && *h ) {
HLock ( h );
result = CallControlDefProc((ControlDefUPP)StripAddress(*h),
varCode + 16, theControl, msgCode, msgParam );
HUnlock ( h );
return result;
}
else
return 0;
}